scikit-learn: LeaveOneOut
https://scikit-learn.org/stable/modules/generated/sklearn.model_selection.LeaveOneOut.html
コンストラクタの引数は
なし
Note: LeaveOneOut() is equivalent to KFold(n_splits=n) and LeavePOut(p=1) where n is the number of samples.
テストセットが1件だけなのでscoresのstdは大きくなった
ref:
3.6 k-fold Cross-Validation and the Bias-Variance Trade-off
(バリアンスが大きい)